home *** CD-ROM | disk | FTP | other *** search
- /* File: all.h
- *
- * Some configuration constants.
- */
- #include <stdio.h>
- #include <tmc.h>
- #include "config.h"
-
- #ifdef HPUX
- #include <malloc.h>
- #define GOTMALLOC
- #endif
- #ifndef GOTMALLOC
- extern char *malloc();
- extern free();
- extern char *calloc();
- extern char *realloc();
- #endif
-
- #ifdef HPUX
- extern void exit();
- #else
- extern exit();
- #endif
-
- #ifdef BSD
- #include <strings.h>
- #else
- #ifdef APOLLO
- #include <strings.h>
- #else
- #include <string.h>
- #endif
- #endif
-
- #ifndef FALSE
- #define TRUE 1
- #define FALSE 0
- #endif
-
- extern void perror();
-